.container{
    width: 90%;
    margin: auto;
    background-color: #fff;
    margin-top: 7rem;
    box-shadow: 5px 5px 15px 0px #333;
}

.container-overlay{
    padding: 3rem 3rem 3rem 3rem;
    background: rgba(255, 255, 255, 0.671);
    /* background: rgba(0, 0, 0, 0.671); */
}

.heading{
    text-align: center;
    font-size: 4rem;
    font-family: 'Berkshire Swash', cursive;
    /* color: #EF3F49; */
}

.page-heading h1{
    width: 35rem;
    margin: 6rem auto;
    padding: 1rem 0;
    text-transform: uppercase;
    color: #EF3F49;
    font-size: 4rem;
    text-align: center;
    border: 2px solid #333;
}

.divider-img{
    height: 1.5rem;
}

.heading-divider{
    margin-top: 2rem;
    text-align: center;
    margin-bottom: 5rem;
}

.food-variety-headings{
    display: flex;
}

.food-variety-headings .veg-heading{
    width: 50%;
}

.food-variety-headings .non-veg-heading{
    width: 50%;
}

.food-variety{
    display: flex;
    justify-content: space-between;
}

.fitem{
    list-style: none;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
    width: 80%;
}

.fprice{
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: right;
    width: 20%;
}

.food-name{
    font-size: 2rem;
    font-weight: 600;
    justify-content: space-between;
}

.food-price{
    font-size: 2rem;
    font-weight: 600;
}

.food-item{
    display: flex;
}

.veg{
    width: 50%;
    justify-content: space-between;
    padding-right: 2rem;
    border-right: 2px black dashed;
    /* border-right: 2px white dashed; */
}

.non-veg{
    width: 50%;
    padding-left: 2rem;
    justify-content: space-between;
}

.veg-heading{
    color: green;
    text-transform: uppercase;
    padding-bottom: 2rem;
    font-size: 2rem;
}

.non-veg-heading{
    color: red;
    text-transform: uppercase;
    padding-bottom: 2rem;
    font-size: 2rem;
    padding-left: 2rem;
}

.desc{
    font-size: 1.5rem;
    font-style: italic;
    text-transform: lowercase;
    font-weight: 500;
}

.title{
    border-bottom: 1px solid black;
    margin-bottom: 3rem;
    color: #EF3F49;
}

#back-to-top{
    background-color: #EF3F49;
    height: 8rem;
    width: 8rem;
    display: block;
    position: fixed;
    bottom: 5rem;
    right: 3rem;
    border-radius: 50%;
    font-size: 6rem;
    cursor: pointer;
    color: #ddd;
    visibility: hidden;
}

#back-to-top p{
    margin: 0.4rem 0.4rem;
    text-align: center;
    color: #EF3F49;
    width: 90%;
    height: 90%;
    background-color: #ddd;
    border-radius: 50%;
    font-weight: 700;
}

.footer-section{
    text-align: center;
    width: 100%;
    /* height: 4rem; */
    margin-top: 8rem;
    color: #ddd;
    background-color: #333;
}

.footer-section .copyright{
    padding: 4rem 0;
    font-size: 2rem;
}

.footer-section .copyright span{
    color: #fff;
}

.footer-section .copyright span a{
    color: #fff;
    text-decoration: none;
}


/* ##################### Drinks Utility Classes ################# */

.drink-name .foods{
    padding: 0 8rem;
}

.drink-container-overlay{
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.drink-img1,
.drink-img2,
.drink-img{
    width: 40%;
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    margin: 1rem;
    transition: all 0.5s ease-in-out;
}

.drink-img:hover{
    background-size: 140%;
}

.drink-name{
    margin: 3rem 0;
    width: 60%;
}

.drink-name .fprice{
    margin-right: 3rem;
}